cdc676047af65d3d2ab730535730a3cfd1d177c1,wicket-spring-boot-starter/src/main/java/com/giffing/wicket/spring/boot/starter/app/WicketBootSecuredWebApplication.java,WicketBootSecuredWebApplication,getHomePage,#,110

Before Change


			throw new IllegalStateException(message);
		}
		
		Class<Page> next = classCandidates.getHomePageCandidates().iterator().next().getCandidate().get();
		return next;
	}

After Change


			throw new IllegalStateException(message);
		}
		
		Class<Page> next = classCandidates.getHomePageCandidates().iterator().next().getCandidate();
		return next;
	}